4cec45384ef4603e5bd1b6456ce43e4d14fbb52f,OsmAnd/src/com/osmand/MapActivity.java,MapActivity,validatePointOfView,#,103
Before Change
MapUtils.getLongitudeFromTile(mapView.getZoom(),tileNumberLeft), mapView.getLatitude(),
MapUtils.getLongitudeFromTile(mapView.getZoom(),tileNumberX));
int radius = (int) ((mapView.getWidth()/ (2d*dist))* lastKnownLocation.getAccuracy());
pointOfView.setLocationX(newX);
After Change
mapView.getHeight()/2;
// TODO specify bearing!
int radius = MapUtils.getLengthXFromMeters(mapView.getZoom(), mapView.getLatitude(), mapView.getLongitude(),
lastKnownLocation.getAccuracy(), mapView.getTileSize(), mapView.getWidth());
pointOfView.setLocationX(newX);
pointOfView.setLocationY(newY);